home *** CD-ROM | disk | FTP | other *** search
/ MacWorld: Complete Mac Interactive / Macworld Complete Mac Interactive CD)(1994).iso / Software / Graphsoft / Arch Demo / Core.sit / MiniCad 5 Demo.rsrc / STR#_7004.txt < prev    next >
Text File  |  1994-04-15  |  1KB  |  69 lines

  1. Sets symbol s to be active.
  2.  
  3. SetActSymbol (s : STRING);
  4.  
  5. Sets the current constrain mode.
  6.  
  7. SetConstrain(s : STRING);
  8.  
  9. Sets the current tool from the palette.
  10.  
  11. SetTool(theTool : INTEGER);
  12.  
  13. Sets one of the standard units.
  14.  
  15. Units(StandardUnit : INTEGER;  DisplayAccuracy : LONGINT);
  16.  
  17. Sets customized units.
  18.  
  19. SetUnits(Fraction, DisplayAccuracy : LONGINT;  Format : INTEGER; UnitsPerInch : REAL; UnitMark, SqrUnitMark : STRING);
  20.  
  21. Activates the snap options :
  22. TRUE = on
  23. FALSE = off
  24.  
  25. Snap(Grid, Object, Locus : BOOLEAN);
  26.  
  27. Sets the scale of the objects.
  28. 2 = 1/2 scale
  29. 4 = 1/4 scale
  30.  
  31. SetScale(ActualSize : REAL);
  32.  
  33. Moves the origin to the point (X, Y).
  34.  
  35. SetOrigin(X, Y : REAL);
  36.  
  37. Redraws screen.
  38.  
  39. Redraw;
  40.  
  41. Sets the smallest mouse increment.
  42.  
  43. PenGrid(Distance : REAL);
  44.  
  45. Sets the distance between the gridlines on the screen.
  46.  
  47. GridLines(Distance : REAL);
  48.  
  49. Sets the overall drawing sheet area of a MiniCad file
  50.  
  51. DrwSize(Rows, Columns : INTEGER);
  52.  
  53. Sets the distance between double lines.
  54.  
  55. DoubLines(Distance : REAL);
  56.  
  57. Must be called before using variable angles.
  58.  
  59. AngleVar;
  60.  
  61. Sets the point-designation method to relative.
  62.  
  63. Relative;
  64.  
  65. Sets the point-designation method to absolute.
  66.  
  67. Absolute;
  68.  
  69.